// Example File Command script to show payload generation for video mode or WriteMemory commands.
// Use this file as the File Name argument.

// Build 256 x 256 RGB888 pyramid and rescale to output frame dimensions
# BUF frame
# line = 0
# LS 256
# pix = line
# LS 256
# IF (pix > 255)
*3 (511-pix)
# ELSE
*3 pix
# ENDIF
# pix = (pix + 1)
# LE
# line = line + 1
# LE
# RESCALE frame 256 256
# STREAM frame

